/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    padding-left: 50px;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 50px;
}

    .nav-links a {
        text-decoration: none;
        color: #120f3b;
        font-weight: 500;
        padding: 6px 8px;
        font-size: 20px;
        font-family: Helvetica, Arial, sans-serif;
    }

        .nav-links a:hover {
            background-color: #eee;
            border-radius: 4px;
        }

/* Button */
.nav-button {
    padding: 8px 16px;
    background-color: #170854;
    color: #ebe8fa;
    border: 2px solid #170854;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 40px;
}

    .nav-button:hover {
        background-color: #382c6e;
        color: #ebe8fa;
    }

/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-button {
        display: none;
    }
}

.content-section {
    background-color: #ddd;
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}


.hero {
    position: relative;
    height: 100vh;
    background-image: url("images/hero banner3.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Brinjal Overlay */
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(9, 6, 20, 0.6); /* Brinjal with 60% transparency */
        z-index: 1;
    }

/* Text Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 20px;
}

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content h4 {
        padding-top: 20px;
        font-size: 20px;
    }



@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
}

.container {
    display: flex;
    flex-direction: column;
    background-color: #201d52;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 70%;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .container {
        flex-direction: row;
    }
}

.left-panel, .right-panel {
    flex: 1;
    padding: 30px;
}

.left-panel {
    background-color: #dfdfed; /* बैंगनी */
    color: rgb(32, 28, 78);
}

    .left-panel h2 {
        margin-bottom: 20px;
    }

.info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

    .info-item i {
        font-size: 20px;
        margin-right: 15px;
        color: rgb(0, 0, 0);
        min-width: 25px;
    }

.social-icons-c {
    margin-top: 30px;
}

    .social-icons-c a {
        color: rgb(0, 0, 0);
        font-size: 20px;
        margin-right: 15px;
        text-decoration: none;
        transition: color 0.3s ease;
    }


.right-panel h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #ffffff;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #cccccc;
        border-radius: 6px;
        font-size: 15px;
    }

    .form-group textarea {
        resize: vertical;
    }

.right-panel button {
    background-color: #6969f7;
    color: white;
    border: 2px solid black;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

    .right-panel button:hover {
        background-color: #9797e8;
        color: #000000;
    }

footer {
    background-color: #170854;
    color: #fff;
    padding: 40px 20px;
    margin-top: 90px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    padding-left: 70px;
}

    .footer-column h3 {
        margin-bottom: 20px;
        font-size: 18px;
        padding-bottom: 5px;
    }

    .footer-column p {
        width: 250px;
        line-height: 1.5;
    }

    .footer-column ul {
        list-style: none;
    }

        .footer-column ul li {
            margin-bottom: 10px;
        }

            .footer-column ul li a {
                color: #ccc;
                text-decoration: none;
                transition: color 0.3s;
            }

                .footer-column ul li a:hover {
                    color: #fff;
                }

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

    .social-icons a:hover {
        color: #fff;
    }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin: 20px 0;
    }
}
